Telegram Group & Telegram Channel
🌐 Быстрая проверка простоты числа в Python

Хотите понять, простое число или нет. Есть два способа: быстрый и ещё быстрее.

Число считается простым, если делится только на 1 и само себя.

1️⃣ Способ: классический перебор — Подходит для небольших чисел — Легкий для понимания

def is_prime(n):
if n <= 1:
return False
for i in range(2, int(n ** 0.5) + 1):
if n % i == 0:
return False
return True


Проверяем деление до √n — быстрее, чем до самого n!

2️⃣ Способ: через списковые выражения (one-liner) — Красиво — Для любителей компактного кода

is_prime = lambda n: n > 1 and all(n % i for i in range(2, int(n**0.5)+1))


Функция в одну строку. Но читаемость иногда важнее красоты

🔵 Включайся в обучение и устраивайся куда хочешь, тебя ждет продвинутый этап нашего курса «Алгоритмы и структуры данных»

Proglib Academy #буст
Please open Telegram to view this post
VIEW IN TELEGRAM



tg-me.com/proglib_academy/2751
Create:
Last Update:

🌐 Быстрая проверка простоты числа в Python

Хотите понять, простое число или нет. Есть два способа: быстрый и ещё быстрее.

Число считается простым, если делится только на 1 и само себя.

1️⃣ Способ: классический перебор — Подходит для небольших чисел — Легкий для понимания

def is_prime(n):
if n <= 1:
return False
for i in range(2, int(n ** 0.5) + 1):
if n % i == 0:
return False
return True


Проверяем деление до √n — быстрее, чем до самого n!

2️⃣ Способ: через списковые выражения (one-liner) — Красиво — Для любителей компактного кода

is_prime = lambda n: n > 1 and all(n % i for i in range(2, int(n**0.5)+1))


Функция в одну строку. Но читаемость иногда важнее красоты

🔵 Включайся в обучение и устраивайся куда хочешь, тебя ждет продвинутый этап нашего курса «Алгоритмы и структуры данных»

Proglib Academy #буст

BY Proglib.academy | IT-курсы




Share with your friend now:
tg-me.com/proglib_academy/2751

View MORE
Open in Telegram


Proglib academy | IT курсы Telegram | DID YOU KNOW?

Date: |

Telegram hopes to raise $1bn with a convertible bond private placement

The super secure UAE-based Telegram messenger service, developed by Russian-born software icon Pavel Durov, is looking to raise $1bn through a bond placement to a limited number of investors from Russia, Europe, Asia and the Middle East, the Kommersant daily reported citing unnamed sources on February 18, 2021.The issue reportedly comprises exchange bonds that could be converted into equity in the messaging service that is currently 100% owned by Durov and his brother Nikolai.Kommersant reports that the price of the conversion would be at a 10% discount to a potential IPO should it happen within five years.The minimum bond placement is said to be set at $50mn, but could be lowered to $10mn. Five-year bonds could carry an annual coupon of 7-8%.

Telegram auto-delete message, expiring invites, and more

elegram is updating its messaging app with options for auto-deleting messages, expiring invite links, and new unlimited groups, the company shared in a blog post. Much like Signal, Telegram received a burst of new users in the confusion over WhatsApp’s privacy policy and now the company is adopting features that were already part of its competitors’ apps, features which offer more security and privacy. Auto-deleting messages were already possible in Telegram’s encrypted Secret Chats, but this new update for iOS and Android adds the option to make messages disappear in any kind of chat. Auto-delete can be enabled inside of chats, and set to delete either 24 hours or seven days after messages are sent. Auto-delete won’t remove every message though; if a message was sent before the feature was turned on, it’ll stick around. Telegram’s competitors have had similar features: WhatsApp introduced a feature in 2020 and Signal has had disappearing messages since at least 2016.

Proglib academy | IT курсы from hk


Telegram Proglib.academy | IT-курсы
FROM USA